home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 4 / FM Towns Free Software Collection 4 - Disc 1.iso / t_os / whisper / source / buff.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-19  |  234 b   |  15 lines

  1. #define LIN_SIZ    82
  2.  
  3. typedef struct {
  4.     int        left;
  5.     int        right;
  6.     char    lin[LIN_SIZ];
  7. } LIN_PTR;
  8.  
  9. int     BUF_init(char *drv);
  10. void    BUF_end(void);
  11.  
  12. LIN_PTR *get_lin(int no);
  13. int    xalloc(void);
  14. int    xfree(int no);
  15.